home *** CD-ROM | disk | FTP | other *** search
/ Aminet 32 / Aminet 32 (1999)(Schatztruhe)[!][Aug 1999].iso / Aminet / dev / lang / Python151_Src.lha / Python1.5_Source / Modules / protos / pcremodule_protos.h < prev    next >
Text File  |  1998-01-27  |  569b  |  11 lines

  1.  
  2. /* pcremodule.c */
  3. static PcreObject *newPcreObject ( PyObject *arg );
  4. static void PyPcre_dealloc ( PcreObject *self );
  5. static PyObject *PyPcre_exec ( PcreObject *self , PyObject *args );
  6. static PyObject *PyPcre_getattr ( PcreObject *self , char *name );
  7. static PyObject *PyPcre_compile ( PyObject *self , PyObject *args );
  8. static PyObject *PyPcre_expand_escape ( unsigned char *pattern , int pattern_len , int *indexptr , int *typeptr );
  9. static PyObject *PyPcre_expand ( PyObject *self , PyObject *args );
  10. static void insint ( PyObject *d , char *name , int value );
  11.